home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_ai / frexp < prev    next >
Text File  |  1995-04-25  |  384b  |  18 lines

  1. frexp:
  2.  
  3. Syntax:    frexp ( A )
  4.  
  5. Description:
  6.     
  7.     Frexp returns a list with elements `f' and `e'.
  8.     Frexp splits A into a normalized fraction in the interval:
  9.  
  10.         0.5 <= abs(f) <= 1
  11.  
  12.     which is returned in `f', and a power of 2, which is returned
  13.     in `e'. If A is zero, then both `e' and `f' are zero.
  14.  
  15.     Frexp operates on REAL matrices of any dimension.
  16.  
  17. See Also: log, log10, log2, exp, mod
  18.